home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2002-01-03 | 1.2 KB | 54 lines |
- "FILE"="Xteq Systems X-Setup Plugin 6.0"
- "TYPE"="6"
- "COUNT"="2"
- "UIPATH"="Appearance\Taskbar"
- "NAME"="General Taskbar Options"
- "VERSION"="1.08"
- "OSVERSION"="000011"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Show context menu for taskbar"
- "TEXT 2"="Allow resizing of taskbar"
- "DESCRIPTION 1"="Some options for the taskbar."
- "AUTHOR"="Xteq Systems (CptSiskoX)"
- "CONTACTURL"="http://www.xteq.com"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"="Resistance is futile. "
-
-
-
- sV1="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\TaskbarContextMenu"
- sV2="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\TaskbarSizeMove"
-
- SUB Plugin_Initialize
- i=RegReadValue(sV1)
- If IsEmpty(i) or i=1 then SetUIElement 1,true
-
- i=RegReadValue(sV2)
- if IsEmpty(i) or i=1 then SetUIElement 2,true
- END SUB
-
- SUB Plugin_CheckData(ElementIndex)
- END SUB
-
- SUB Plugin_Apply(ElementIndex,ElementSubIndex)
- b=GetUIElement(1)
- if b=true then
- Call RegWriteValue(sV1,1,2)
- else
- Call RegWriteValue(sV1,0,2)
- end if
-
- b=GetUIElement(2)
- if b=true then
- Call RegWriteValue(sV2,1,2)
- else
- Call RegWriteValue(sV2,0,2)
- end if
-
-
- Call Logoff
- END SUB
-
- SUB Plugin_Terminate
- END SUB
-